home *** CD-ROM | disk | FTP | other *** search
- @echo off
- If exist install.bat goto skip0
- echo To install HyperDOS onto your hard disk, first go to the floppy drive
- echo which contains the HyperDOS floppy, then type install. For example:
- echo a:
- echo install
- goto done
- :skip0
- echo -------------------------------------------------------------
- echo Installing HyperDOS onto your C: drive!!!
- echo -------------------------------------------------------------
- echo If you currently have a version of HyperDOS on your C: drive,
- echo the data from your Notepad, Card File, Letter Writer, and
- echo Address Book will be copied to your new HyperDOS. Information in
- echo the Calendar and Program Manager will be lost. Also, the old version
- echo of HyperDOS will be deleted. If you do not want the data from
- echo your Notepad, Card File, ... you will have an opportunity to
- echo skip the update procedure later.
- echo -------------------------------------------------------------
- echo If you do NOT want to continue with the installation, hold the
- echo CTRL key down and press C
- pause
- if not exist c:\hyperdos\*.* mkdir c:\hyperdos
- echo Continuing with HyperDOS installation.
- copy hyperarc.exe c:\hyperdos
- c:
- cd \hyperdos
- if not exist c:\hyperdos\oldpads\*.* mkdir c:\hyperdos\oldpads
- if exist note.pad copy note.pad oldpads
- if exist index.pad copy index.pad oldpads
- if exist letter.pad copy letter.pad oldpads
- if exist phone.pad copy phone.pad oldpads
- if exist pnotes.pad copy pnotes.pad oldpads
- if exist outgoing.pad copy outgoing.pad oldpads
- hyperarc
- del hyperarc.exe
- if not exist oldpads\*.pad goto almost
- echo -
- echo -------------------------------------------------------
- echo The new version of HyperDOS is now on your hard disk.
- echo The next step in this procedure is to extract the information
- echo from your previous Notepad, Card File, Letter Writer, and Address
- echo Book. If you do NOT want the old information hold the
- echo CTRL key down and press C now.
- echo -------------------------------------------------------
- echo to start HyperDOS type:
- echo hyperdos
- echo after the C:\HYPERDOS prompt.
- echo -------------------------------------------------------
- pause
- hyperdos autoup
- :almost
- echo -
- echo -------------------------------------------------------
- echo to start HyperDOS type:
- echo hyperdos
- echo after the C:\HYPERDOS prompt.
- echo -------------------------------------------------------
- :done
-